home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / sed.postinst < prev    next >
Text File  |  2008-05-03  |  288b  |  17 lines

  1. #! /bin/sh -e
  2.  
  3. pkg=sed
  4.  
  5. case "$1" in
  6.   (configure|abort-remove|abort-deconfigure)
  7.     install-info --quiet --section "General commands" "General commands" \
  8.         /usr/share/info/sed.info
  9.     ;;
  10.   (abort-upgrade)
  11.     # Nothing to undo
  12.     ;;
  13.   (*)
  14.     echo "$0: Undocumented call: \"$@\"" >&2
  15.     exit 1;
  16. esac
  17.